subtypes - определение. Что такое subtypes
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое subtypes - определение

A FORM OF TYPE POLYMORPHISM
Subtypes; Subtyping (object-oriented programming); Supertype; Subtype and derived type; Interface inheritance; Subtyping of functions; Subtype (computing); Inclusion polymorphism; Subtyping polymorphism; Subtype polymorphism
Найдено результатов: 33
Subtyping         
In programming language theory, subtyping (also subtype polymorphism or inclusion polymorphism) is a form of type polymorphism in which a subtype is a datatype that is related to another datatype (the supertype) by some notion of substitutability, meaning that program elements, typically subroutines or functions, written to operate on elements of the supertype can also operate on elements of the subtype. If S is a subtype of T, the subtyping relation (written as ,  ,Copestake, Ann.
subtyping         
Subtypes of HIV         
VARIANTS OF THE HUMAN IMMUNODEFICIENCY VIRUS
HIV-1; HIV-2; Human immunodeficiency virus 1; Human immunodeficiency virus 2; HIV Group O; Human Immunodeficiency Virus 1; HIV-1 infection; HIV subtypes; HIV subtype; А3/02; CRF19; HIV1; HIV2; Human immunodeficiency virus type 2; Human immunodeficiency virus type 1; HIV-1 group M
One of the obstacles to treatment of the human immunodeficiency virus (HIV) is its high genetic variability. HIV can be divided into two major types, HIV type 1 (HIV-1) and HIV type 2 (HIV-2).
List of verrucous carcinoma subtypes         
WIKIMEDIA LIST ARTICLE
Verrucous carcinoma is a type of squamous cell carcinoma that may be associated with HPV infection (may be subtypes 16 or 18, but types 6 and 11 have also been reported, as have HPV negative variants). Several subtypes of verrucous carcinoma have been described.
subtype         
WIKIMEDIA DISAMBIGUATION PAGE
Subtype (disambiguation)
<programming> If S is a subtype of T then an expression of type S may be used anywhere that one of type T can and an implicit type conversion will be applied to convert it to type T. In object oriented programming, this means that objects of type S must accept every message that one of type T would. (1997-07-28)
subtype         
WIKIMEDIA DISAMBIGUATION PAGE
Subtype (disambiguation)
¦ noun a secondary or subordinate type.
Behavioral subtyping         
Inheritance semantics; Principle of substitutability
In object-oriented programming, behavioral subtyping is the principle that subclasses should satisfy the expectations of clients accessing subclass objects through references of superclass type, not just as regards syntactic safety (such as the absence of "method-not-found" errors) but also as regards behavioral correctness. Specifically, properties that clients can prove using the specification of an object's presumed type should hold even though the object is actually a member of a subtype of that type.
Influenza A virus subtype H3N8         
  • upright
  • Transmission routes of EIV
  • Life cycle and pathogenesis of EIV
VIRUS SUBTYPE
Influenza a virus, h3n8 subtype; H3N8; Seal flu; Equine influenza virus
H3N8 is a subtype of the species Influenza A virus that is endemic in birds, horses and dogs. It is the main cause of equine influenza and is also known as equine influenza virus.
Influenza A virus subtype H5N1         
  • Countries with poultry or wild birds killed by H5N1}}
{{refend}}
  • doi=10.2353/ajpath.2008.070791}}</ref>
  • The ''H'' in H5N1 stands for "[[hemagglutinin]]", as depicted in this molecular model
  • Influenza A virus]] particles (small and white) attached to host cells (large and irregular) (late passage). (''Source: Dr. Erskine Palmer, Centers for Disease Control and Prevention Public Health Image Library'')
  • Neuraminidase]]", the protein depicted in this ribbon diagram
SUBTYPE OF INFLUENZA A VIRUS
Asian bird flu; H5n1; H1N5; H5n1 virus; H5N1 influenza; Vogelgrippe; Genotype Z; HN51; HPAI H5N1; Influenza a virus, h5n1 subtype; H5Nl; H5N1 (virus); H5N1; H5N1 Diagrams; Avian influenza subtype H5N1; H5N1 virus; H5N1 avian influenza; A(H5N1); Highly Pathogenic Avian Influenza H5N1 virus; Asian lineage HPAI A(H5N1); Influenza H5N1; Avian H5N1 influenza viruses
Influenza A virus subtype H5N1 (A/H5N1) is a subtype of the influenza A virus which can cause illness in humans and many other animal species. A bird-adapted strain of H5N1, called HPAI A(H5N1) for highly pathogenic avian influenza virus of type A of subtype H5N1, is the highly pathogenic causative agent of H5N1 flu, commonly known as avian influenza ("bird flu").
Influenza A virus subtype H3N2         
Influenza A virus subtype H3N2 (A/H3N2) is a subtype of viruses that causes influenza (flu). H3N2 viruses can infect birds and mammals.

Википедия

Subtyping

In programming language theory, subtyping (also subtype polymorphism or inclusion polymorphism) is a form of type polymorphism in which a subtype is a datatype that is related to another datatype (the supertype) by some notion of substitutability, meaning that program elements, typically subroutines or functions, written to operate on elements of the supertype can also operate on elements of the subtype. If S is a subtype of T, the subtyping relation (written as S <: T,  ST, or  S ≤: T ) means that any term of type S can safely be used in any context where a term of type T is expected. The precise semantics of subtyping here crucially depends on the particulars of how "safely be used" and "any context" are defined by a given type formalism or programming language. The type system of a programming language essentially defines its own subtyping relation, which may well be trivial, should the language support no (or very little) conversion mechanisms.

Due to the subtyping relation, a term may belong to more than one type. Subtyping is therefore a form of type polymorphism. In object-oriented programming the term 'polymorphism' is commonly used to refer solely to this subtype polymorphism, while the techniques of parametric polymorphism would be considered generic programming.

Functional programming languages often allow the subtyping of records. Consequently, simply typed lambda calculus extended with record types is perhaps the simplest theoretical setting in which a useful notion of subtyping may be defined and studied. Because the resulting calculus allows terms to have more than one type, it is no longer a "simple" type theory. Since functional programming languages, by definition, support function literals, which can also be stored in records, records types with subtyping provide some of the features of object-oriented programming. Typically, functional programming languages also provide some, usually restricted, form of parametric polymorphism. In a theoretical setting, it is desirable to study the interaction of the two features; a common theoretical setting is system F<:. Various calculi that attempt to capture the theoretical properties of object-oriented programming may be derived from system F<:.

The concept of subtyping is related to the linguistic notions of hyponymy and holonymy. It is also related to the concept of bounded quantification in mathematical logic (see Order-sorted logic). Subtyping should not be confused with the notion of (class or object) inheritance from object-oriented languages; subtyping is a relation between types (interfaces in object-oriented parlance) whereas inheritance is a relation between implementations stemming from a language feature that allows new objects to be created from existing ones. In a number of object-oriented languages, subtyping is called interface inheritance, with inheritance referred to as implementation inheritance.